Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/059-form validator

style.css cody/solygambas/html-css-javascript-projects/059-form validator/style.css
133 Views
0 Comments
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");

:root {
--main-color: #3498db;
--success-color: #2ecc71;
--error-color: #e74c3c;
}

index.html cody/solygambas/html-css-javascript-projects/059-form validator/index.html
296 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Form Validator</title>
</head>
script.js cody/solygambas/html-css-javascript-projects/059-form validator/script.js
204 Views
0 Comments
const form = document.getElementById("form");
const username = document.getElementById("username");
const email = document.getElementById("email");
const password = document.getElementById("password");
const password2 = document.getElementById("password2");

function showError(input, message) {
const formControl = input.parentElement;